6f5a14f342c540612f34d80e148dfe7e3c650029,app/src/main/java/org/sensors2/osc/sensors/Settings.java,Settings,Settings,#SharedPreferences#,13

Before Change



	public Settings(SharedPreferences preferences) {
		super(preferences);
		this.setHost(preferences);
		this.setPort(preferences);
	}

After Change



	public Settings(SharedPreferences preferences) {
		super(preferences);
		this.host = this.setHost(preferences);
		this.port = this.setPort(preferences);
		this.sensitivity = this.setSensitivity(preferences);
	}